home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-03 | 395 b | 15 lines | [TEXT/ToyS] |
- on run
- repeat with i from 1 to (number of tracks on audio CD)
- set ti to (track information for audio CD for track i)
- display dialog (convert(ti))
- end repeat
- return
- end run
-
- on convert(t)
- set s to "{"
- set s to s & "minutes=" & (mins of t as string) & ","
- set s to s & "seconds=" & (secs of t as string) & ","
- set s to s & "frames=" & (frames of t as string) & "}"
- return s
- end convert